home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990725-20000114 / 000105_news@columbia.edu _Mon Sep 20 12:50:09 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id MAA12695
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 20 Sep 1999 12:50:07 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id MAA19897
  7.     for kermit.misc@watsun.cc.columbia.edu; Mon, 20 Sep 1999 12:40:23 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. Message-ID: <37E6520D.42C0C9EE@omegafilters.com>
  10. From: Michael Newton <mnewton@omegafilters.com>
  11. Subject: X.25 7E1, help?
  12. Date: Mon, 20 Sep 1999 11:26:05 -0400
  13. To: kermit.misc@columbia.edu
  14.  
  15. I am trying to use C-Kermit to communicate to a point-of-sale host. I am
  16. using Comtrol Rocketmodems, multimodem cards that use Rockwell chipsets.
  17.  
  18. This is the extent of the information I have on the communications spec:
  19.  
  20. Transmission line speed: 200 BPS/1200 BPS, Async
  21. Data formats: 7 bit, ASCII, even parity, 1 stop bit
  22. Modulation: FSK carrier frequency - 1070/1270 Hz
  23. Modem: Compatible with Bell 103/212a in originate mode, no error
  24. correction.
  25.  
  26. The modem documentation speaks of the command ATB1 - "Choose Bell212A
  27. connection at 1200 bps." I can't find any more on this command, but it
  28. appears to have the effect of setting the modem up with no
  29. error-correction or compression, which seems to be what I want. So I do
  30. this in Kermit:
  31.  
  32. set modem hayes-1200
  33. set parity even
  34. set serial 7e1
  35. set modem command init-string ATB1 X4\{13}
  36. set line /dev/ttyX
  37. set speed 1200
  38.  
  39. I'd hope this would set things up properly, with the X4 in there so i
  40. can get error reporting (this is driven by an Expect script).
  41.  
  42. I am told that I am dialing into a UUNet X.25 Cloud. What I am told to
  43. expect is an ENQ control character, after which I send my message, which
  44. contains some alphanumerics and some other control characters, I get
  45. something similar back, I send an ACK, get back an EOT, and we hang up.
  46. The Expect/Kermit arrangment seems to be catching/sending control
  47. characters properly, as far as I can determine so far.
  48.  
  49. However, there is something wrong, as I cannot seem to get through the
  50. X.25 to the host. I dial, I get CONNECT 1200, i get a few characters,
  51. one of which seems to be an ENQ, then it hangs up on me immediately.
  52.  
  53. Any insight is appreciated!
  54.  
  55. Thanks,
  56. Michael